.login {
	width: 300px;
	font-family: Tahoma, Geneva, sans-serif;
    padding: 37px;
    border-radius: 10px;
    background: var(--white);
    box-shadow: 0px 0px 50px 0px var(--blue_darkest);
    margin: auto;
    top: 250px;
    height: fit-content;
}

.login h1 {
	text-align: center;
	color: #4d4d4d;
	font-size: 24px;
}


.login input[type="password"],
.login input[type="text"] {
	width: 100%;
    padding: 15px;
    border: 2px solid var(--gray_lightest);
    margin-bottom: 15px;
    box-sizing: border-box;
    background: var(--yellow_lightest);
    border-radius: 3px;
}


.login input[type="password"]:focus,
.login input[type="text"]:focus {
    outline: none !important;
    border: 2px solid var(--yellow);
}

.login input[type="checkbox"]{
	padding: 15px;
	background-color: #535b63;
	box-sizing: border-box;
	margin: 15px;
	cursor: pointer;
}

.login label{
	width: 95%;
	padding: 15px;
	cursor: pointer;
	font-weight: bold;
	color: #fff;
}

.login input[type="submit"] {
	width: 100%;
	height: 48px;
	margin: auto;
	background-color: #535b63;
	border: 0;
	box-sizing: border-box;
	cursor: pointer;
	font-weight: bold;
	color: #ffffff;
    border-radius: 5px;
}

.login input[type="submit"]:hover {
    background-color: var(--blue);
}

body {
    padding-top: 160px;
    height: 100%;
    box-sizing: border-box;
}
.imagebgcontainer {
    width: 100%;
    position: absolute;
    top: 0px;
    aspect-ratio: 1.5;
    max-height: calc(100% - 60px);
    overflow: hidden;
}
.imagebgcontainer::after {
    box-shadow: inset 0px -50px 50px 70px var(--bg);
    content: '';
    display: block;
    height: 110%;
    position: absolute;
    width: 120%;
    top: -10%;
    left: -10%;
}
.imagebg{
    width: 100%;
    position: absolute;
    top: 0px;
    bottom: 0px;
    margin: auto;
    animation: fadeIn 2s var(--bounce) forwards;
    filter: blur(3px);
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}

#toastcontainer {
    top: 125px;
    position: absolute;
    width: 100%;
    align-items: center;
    padding: unset;
    height: fit-content;
}


